home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / utmisc1 / chktex.lha / chktex / configure.in < prev    next >
Text File  |  1996-04-30  |  2KB  |  57 lines

  1. dnl
  2. dnl ChkTeX v1.4, configuration file.
  3. dnl Copyright (C) 1995-96 Jens T. Berger Thielemann
  4. dnl
  5. dnl This program is free software; you can redistribute it and/or modify
  6. dnl it under the terms of the GNU General Public License as published by
  7. dnl the Free Software Foundation; either version 2 of the License, or
  8. dnl (at your option) any later version.
  9. dnl
  10. dnl This program is distributed in the hope that it will be useful,
  11. dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. dnl GNU General Public License for more details.
  14. dnl
  15. dnl You should have received a copy of the GNU General Public License
  16. dnl along with this program; if not, write to the Free Software
  17. dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. dnl
  19. dnl Contact the author at:
  20. dnl             Jens Berger
  21. dnl             Spektrumvn. 4
  22. dnl             N-0666 Oslo
  23. dnl             Norway
  24. dnl             E-mail: <jensthi@ifi.uio.no>
  25. dnl
  26. dnl
  27.  
  28.  
  29. dnl Process this file with autoconf to produce a configure script.
  30. AC_INIT(ChkTeX.c)
  31.  
  32. dnl Checks for programs.
  33. AC_PROG_CC
  34. AC_PROG_INSTALL
  35. AC_PATH_PROG(PERL5, perl5, /usr/local/bin/perl5,
  36.   $PATH:/usr/bin:/usr/local/bin)
  37. AC_PATH_PROGS(TCSH, tcsh csh, /local/bin/csh)
  38. AC_PATH_PROG(LATEX, latex, /local/bin/latex)
  39. AC_PATH_PROG(DVIPS, dvips, /local/bin/dvips)
  40.  
  41. dnl Checks for libraries.
  42.  
  43. dnl Checks for header files.
  44. AC_HEADER_STDC
  45. AC_CONFIG_HEADER(config.h)
  46. AC_CHECK_HEADERS(limits.h unistd.h)
  47.  
  48. dnl Checks for typedefs, structures, and compiler characteristics.
  49. AC_C_CONST
  50. AC_TYPE_SIZE_T
  51.  
  52. dnl Checks for library functions.
  53. AC_FUNC_VPRINTF
  54. AC_CHECK_FUNCS(strdup strtol strupr access strcasecmp)
  55.  
  56. AC_OUTPUT(Makefile chkweb deweb)
  57.